MeiliSearch JavaScript
ā” The MeiliSearch API client written for JavaScript
MeiliSearch JavaScript is the MeiliSearch API client for JavaScript developers.
MeiliSearch is an open-source search engine. Discover what MeiliSearch is!
Table of Contents
š Documentation
See our Documentation or our API References.
š§ Installation
We only guarantee that the package works with node
>= 12 and node
< 15.
With npm
:
npm install meilisearch
With yarn
:
yarn add meilisearch
šāāļø Run MeiliSearch
There are many easy ways to download and run a MeiliSearch instance.
For example, if you use Docker:
docker pull getmeili/meilisearch:latest
docker run -it --rm -p 7700:7700 getmeili/meilisearch:latest ./meilisearch --master-key=masterKey
NB: you can also download MeiliSearch from Homebrew or APT.
Import
Depending on the environment on which you are using MeiliSearch, imports may differ.
Import Syntax
Usage in a ES module environment:
import { MeiliSearch } from 'meilisearch'
const client = new MeiliSearch({
host: 'http://127.0.0.1:7700',
apiKey: 'masterKey',
})
Include Script Tag
Usage in an HTML (or alike) file:
<script src='https://cdn.jsdelivr.net/npm/meilisearch@latest/dist/bundles/meilisearch.umd.js'></script>
<script>
const client = new MeiliSearch({
host: 'http://127.0.0.1:7700',
apiKey: 'masterKey',
})
</script>
Require Syntax
Usage in a back-end node environment
const { MeiliSearch } = require('meilisearch')
const client = new MeiliSearch({
host: 'http://127.0.0.1:7700',
apiKey: 'masterKey',
})
React Native
To make this package work with React Native, please add the react-native-url-polyfill.
Deno
Usage in a back-end deno environment
import { MeiliSearch } from "https://esm.sh/meilisearch"
const client = new MeiliSearch({
host: 'http://127.0.0.1:7700',
apiKey: 'masterKey',
})
š¬ Getting Started
Add Documents
const { MeiliSearch } = require('meilisearch')
import { MeiliSearch } from 'meilisearch'
;(async () => {
const client = new MeiliSearch({
host: 'http://127.0.0.1:7700',
apiKey: 'masterKey',
})
const index = client.index('movies')
const documents = [
{ id: 1, title: 'Carol', genres: ['Romance', 'Drama'] },
{ id: 2, title: 'Wonder Woman', genres: ['Action', 'Adventure'] },
{ id: 3, title: 'Life of Pi', genres: ['Adventure', 'Drama'] },
{ id: 4, title: 'Mad Max: Fury Road', genres: ['Adventure', 'Science Fiction'] },
{ id: 5, title: 'Moana', genres: ['Fantasy', 'Action']},
{ id: 6, title: 'Philadelphia', genres: ['Drama'] },
]
let response = await index.addDocuments(documents)
console.log(response)
})()
With the updateId
, you can check the status (enqueued
, processing
, processed
or failed
) of your documents addition using the update endpoint.
Basic Search
const search = await index.search('philoudelphia')
console.log(search)
Output:
{
"hits": [
{
"id": "6",
"title": "Philadelphia",
"genres": ["Drama"]
}
],
"offset": 0,
"limit": 20,
"nbHits": 1,
"processingTimeMs": 1,
"query": "philoudelphia"
}
Custom Search
All the supported options are described in the search parameters section of the documentation.
await index.search(
'wonder',
{
attributesToHighlight: ['*'],
filter: 'id >= 1'
}
)
{
"hits": [
{
"id": 2,
"title": "Wonder Woman",
"genres": ["Action", "Adventure"],
"_formatted": {
"id": 2,
"title": "<em>Wonder</em> Woman",
"genres": ["Action", "Adventure"]
}
}
],
"offset": 0,
"limit": 20,
"nbHits": 1,
"processingTimeMs": 0,
"query": "wonder"
}
Placeholder Search
Placeholder search makes it possible to receive hits based on your parameters without having any query (q
). To enable faceted search on your dataset you need to add genres
in the settings.
await index.search(
'',
{
filter: ['genres = fantasy'],
facetsDistribution: ['genres']
}
)
{
"hits": [
{
"id": 2,
"title": "Wonder Woman",
"genres": ["Action","Adventure"]
},
{
"id": 5,
"title": "Moana",
"genres": ["Fantasy","Action"]
}
],
"offset": 0,
"limit": 20,
"nbHits": 2,
"processingTimeMs": 0,
"query": "",
"facetsDistribution": {
"genres": {
"Action": 2,
"Fantasy": 1,
"Adventure": 1
}
}
Abortable Search
You can abort a pending search request by providing an AbortSignal to the request.
const controller = new AbortController()
index
.search('wonder', {}, {
signal: controller.signal,
})
.then((response) => {
})
.catch((e) => {
})
controller.abort()
š¤ Compatibility with MeiliSearch
This package only guarantees the compatibility with the version v0.22.0 of MeiliSearch.
š” Learn More
The following sections may interest you:
This repository also contains more examples.
āļø Development Workflow and Contributing
Any new contribution is more than welcome in this project!
If you want to know more about the development workflow or want to contribute, please visit our contributing guidelines for detailed instructions!
š API Resources
Search
client.index<T>('xxx').search(query: string, options: SearchParams = {}, config?: Partial<Request>): Promise<SearchResponse<T>>
- Make a search request using GET method (slower than the search method):
client.index<T>('xxx').searchGet(query: string, options: SearchParams = {}, config?: Partial<Request>): Promise<SearchResponse<T>>
Indexes
client.listIndexes(): Promise<IndexResponse[]>
client.createIndex<T>(uid: string, options?: IndexOptions): Promise<Index<T>>
- Create a local reference to an index:
client.index<T>(uid: string): Index<T>
client.getIndex<T>(uid: string): Promise<Index<T>>
- Get or create index if it does not exist
client.getOrCreateIndex<T>(uid: string, options?: IndexOptions): Promise<Index<T>>
index.getRawInfo(): Promise<IndexResponse>
client.updateIndex(uid: string, options: IndexOptions): Promise<Index>
Or using the index object:
index.update(data: IndexOptions): Promise<Index>
client.deleteIndex(uid): Promise<void>
Or using the index object:
index.delete(): Promise<void>
index.getStats(): Promise<IndexStats>
- Return Index instance with updated information:
index.fetchInfo(): Promise<Index>
- Get Primary Key of an Index:
index.fetchPrimaryKey(): Promise<string | undefined>
Updates
index.getUpdateStatus(updateId: number): Promise<Update>
index.getAllUpdateStatus(): Promise<Update[]>
index.waitForPendingUpdate(updateId: number, { timeOutMs?: number, intervalMs?: number }): Promise<Update>
Documents
- Add or replace multiple documents:
index.addDocuments(documents: Document<T>[]): Promise<EnqueuedUpdate>
- Add or update multiple documents:
index.updateDocuments(documents: Document<T>[]): Promise<EnqueuedUpdate>
index.getDocuments(params: getDocumentsParams): Promise<Document<T>[]>
index.getDocument(documentId: string): Promise<Document<T>>
index.deleteDocument(documentId: string | number): Promise<EnqueuedUpdate>
- Delete multiple documents:
index.deleteDocuments(documentsIds: string[] | number[]): Promise<EnqueuedUpdate>
index.deleteAllDocuments(): Promise<Types.EnqueuedUpdate>
Settings
index.getSettings(): Promise<Settings>
index.updateSettings(settings: Settings): Promise<EnqueuedUpdate>
index.resetSettings(): Promise<EnqueuedUpdate>
Synonyms
index.getSynonyms(): Promise<object>
index.updateSynonyms(synonyms: Synonyms): Promise<EnqueuedUpdate>
index.resetSynonyms(): Promise<EnqueuedUpdate>
Stop-words
-
Get Stop Words
index.getStopWords(): Promise<string[]>
-
Update Stop Words
index.updateStopWords(stopWords: string[] | null ): Promise<EnqueuedUpdate>
-
Reset Stop Words
index.resetStopWords(): Promise<EnqueuedUpdate>
Ranking rules
-
Get Ranking Rules
index.getRankingRules(): Promise<string[]>
-
Update Ranking Rules
index.updateRankingRules(rankingRules: string[] | null): Promise<EnqueuedUpdate>
-
Reset Ranking Rules
index.resetRankingRules(): Promise<EnqueuedUpdate>
Distinct Attribute
-
Get Distinct Attribute
index.getDistinctAttribute(): Promise<string | void>
-
Update Distinct Attribute
index.updateDistinctAttribute(distinctAttribute: string | null): Promise<EnqueuedUpdate>
-
Reset Distinct Attribute
index.resetDistinctAttribute(): Promise<EnqueuedUpdate>
Searchable Attributes
-
Get Searchable Attributes
index.getSearchableAttributes(): Promise<string[]>
-
Update Searchable Attributes
index.updateSearchableAttributes(searchableAttributes: string[] | null): Promise<EnqueuedUpdate>
-
Reset Searchable Attributes
index.resetSearchableAttributes(): Promise<EnqueuedUpdate>
Displayed Attributes
-
Get Displayed Attributes
index.getDisplayedAttributes(): Promise<string[]>
-
Update Displayed Attributes
index.updateDisplayedAttributes(displayedAttributes: string[] | null): Promise<EnqueuedUpdate>
-
Reset Displayed Attributes
index.resetDisplayedAttributes(): Promise<EnqueuedUpdate>
Filterable Attributes
-
Get Filterable Attributes
index.getFilterableAttributes(): Promise<string[]>
-
Update Filterable Attributes
index.updateFilterableAttributes(filterableAttributes: string[] | null): Promise<EnqueuedUpdate>
-
Reset Filterable Attributes
index.resetFilterableAttributes(): Promise<EnqueuedUpdate>
Keys
client.getKeys(): Promise<Keys>
isHealthy
- Return
true
or false
depending on the health of the server.
client.isHealthy(): Promise<boolean>
Health
- Check if the server is healthy
client.health(): Promise<Health>
Stats
client.stats(): Promise<Stats>
Version
client.version(): Promise<Version>
Dumps
- Trigger a dump creation process
client.createDump(): Promise<Types.EnqueuedDump>
- Get the status of a dump creation process
client.getDumpStatus(dumpUid: string): Promise<Types.EnqueuedDump>
MeiliSearch provides and maintains many SDKs and Integration tools like this one. We want to provide everyone with an amazing search experience for any kind of project. If you want to contribute, make suggestions, or just know what's going on right now, visit us in the integration-guides repository.